Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | (function() { |
||
2 | var css = function( args ) { |
||
3 | var string = "font-size:{0};color:{1};padding:{2};line-height:24px;text-shadow:0 1px #000;background:#263238;text-decoration:none;"; |
||
4 | return string.replace( /{(\d+)}/g, function( match, number ) { |
||
5 | return args[ number ]; |
||
6 | }); |
||
7 | }; |
||
8 | console.log( |
||
18 |